| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564 |
- "use client";
- import {fetchApi, fetchFile} from "@/app/_modules/func";
- import {DeleteOutlined, ExclamationCircleFilled, EyeOutlined, ReloadOutlined,} from "@ant-design/icons";
- import type {ActionType, ProColumns, ProFormInstance,} from "@ant-design/pro-components";
- import {PageContainer, ProDescriptions, ProTable,} from "@ant-design/pro-components";
- import {Button, message, Modal, Space, Tag} from "antd";
- import {useRouter} from "next/navigation";
- import {faCheck, faDownload, faToggleOff, faToggleOn, faXmark,} from "@fortawesome/free-solid-svg-icons";
- import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
- import {useRef, useState} from "react";
- //查询Job详情
- const queryJobAPI = "/api/monitor/job";
- //查询表格数据API
- const queryAPI = "/api/monitor/jobLog/list";
- //删除API
- const deleteAPI = "/api/monitor/jobLog";
- //导出API
- const exportAPI = "/api/monitor/jobLog/export";
- //导出文件前缀名
- const exportFilePrefix = "joblog";
- //清空调度日志API
- const clearAllAPI = "/api/monitor/jobLog/clean";
- export default function JobLog({ params }: { params: { jobid: string } }) {
- const { push } = useRouter();
- // 添加用于控制删除确认模态框的状态
- const [deleteModalVisible, setDeleteModalVisible] = useState(false);
- const [deleteJobLogId, setDeleteJobLogId] = useState<string | number | null>(null);
- // 添加用于控制清空确认模态框的状态
- const [clearAllModalVisible, setClearAllModalVisible] = useState(false);
- //获取对应的任务的JobName的值
- const getJobName = async () => {
- const resp = await fetchApi(`${queryJobAPI}/${params.jobid}`, push);
- if (resp != undefined) {
- if (searchTableFormRef.current) {
- searchTableFormRef.current.setFieldsValue({
- jobName: resp.data.jobName,
- jobGroup: resp.data.jobGroup,
- });
- }
- return [resp.data.jobName, resp.data.jobGroup];
- }
- return "";
- };
- //表格列定义
- const columns: ProColumns[] = [
- {
- title: "日志编号",
- dataIndex: "jobLogId",
- search: false,
- },
- {
- title: "任务名称",
- fieldProps: {
- placeholder: "请输入任务名称",
- },
- dataIndex: "jobName",
- ellipsis: true,
- order: 4,
- },
- {
- title: "任务组名",
- dataIndex: "jobGroup",
- valueType: "select",
- valueEnum: {
- DEFAULT: {
- text: "默认",
- status: "DEFAULT",
- },
- SYSTEM: {
- text: "系统",
- status: "SYSTEM",
- },
- },
- order: 3,
- },
- {
- title: "调用目标字符串",
- dataIndex: "invokeTarget",
- ellipsis: true,
- search: false,
- },
- {
- title: "日志信息",
- dataIndex: "jobMessage",
- ellipsis: true,
- search: false,
- },
- {
- title: "执行状态",
- dataIndex: "status",
- valueType: "select",
- render: (_, record) => {
- return (
- <Space>
- <Tag
- color={record.status === "0" ? "green" : "red"}
- icon={
- record.status == 0 ? (
- <FontAwesomeIcon icon={faCheck} />
- ) : (
- <FontAwesomeIcon icon={faXmark} />
- )
- }
- >
- {_}
- </Tag>
- </Space>
- );
- },
- valueEnum: {
- 0: {
- text: "成功",
- status: "0",
- },
- 1: {
- text: "失败",
- status: "1",
- },
- },
- order: 2,
- },
- {
- title: "执行时间",
- dataIndex: "createTime",
- valueType: "dateTime",
- search: false,
- },
- {
- title: "执行时间",
- fieldProps: {
- placeholder: ["开始日期", "结束日期"],
- },
- dataIndex: "createTimeRange",
- valueType: "dateRange",
- hideInTable: true,
- order: 1,
- search: {
- transform: (value) => {
- return {
- "params[beginTime]": `${value[0]} 00:00:00`,
- "params[endTime]": `${value[1]} 23:59:59`,
- };
- },
- },
- },
- {
- title: "操作",
- key: "option",
- search: false,
- render: (_, record) => [
- <Button
- key="detailBtn"
- type="link"
- icon={<EyeOutlined />}
- onClick={() => onClickShowRowDetailModal(record)}
- >
- 详情
- </Button>,
- ],
- },
- ];
- //0.查询表格数据
- const queryTableData = async (params: any, sorter: any, filter: any) => {
- const searchParams = {
- pageNum: params.current,
- ...params,
- };
- delete searchParams.current;
- const queryParams = new URLSearchParams(searchParams);
- //如果没有带上默认的字典类型,查询绑定上
- if (!("jobName" in searchParams)) {
- const result = await getJobName();
- queryParams.append("jobName", result[0]);
- queryParams.append("jobGroup", result[1]);
- }
- Object.keys(sorter).forEach((key) => {
- queryParams.append("orderByColumn", key);
- if (sorter[key] === "ascend") {
- queryParams.append("isAsc", "ascending");
- } else {
- queryParams.append("isAsc", "descending");
- }
- });
- const body = await fetchApi(`${queryAPI}?${queryParams}`, push);
- return body;
- };
- //操作当前数据的附加数据
- const [operatRowData, setOperateRowData] = useState<{
- [key: string]: any;
- }>({});
- //3.删除
- //点击删除按钮,展示删除确认框
- const onClickDeleteRow = (record?: any) => {
- const jobLogId = record !== undefined ? record.jobLogId : selectedRowKeys.join(",");
- setDeleteJobLogId(jobLogId);
- setDeleteModalVisible(true);
- };
- //确定删除选中的数据
- const executeDeleteRow = async () => {
- if (deleteJobLogId === null) return;
-
- const body = await fetchApi(`${deleteAPI}/${deleteJobLogId}`, push, {
- method: "DELETE",
- });
- if (body !== undefined) {
- if (body.code == 200) {
- message.success("删除成功");
- //删除按钮变回不可点击
- setRowCanDelete(false);
- //选中行数据重置为空
- setSelectedRowKeys([]);
- //刷新列表
- if (actionTableRef.current) {
- actionTableRef.current.reload();
- }
- } else {
- message.error(body.msg);
- }
- }
- setDeleteModalVisible(false);
- setDeleteJobLogId(null);
- };
- //取消删除操作
- const cancelDeleteRow = () => {
- setDeleteModalVisible(false);
- setDeleteJobLogId(null);
- };
- //弹出清空确认框
- const onClickClearAll = () => {
- setClearAllModalVisible(true);
- };
- //执行清空调度日志
- const executeClearAll = async () => {
- const body = await fetchApi(clearAllAPI, push, {
- method: "DELETE",
- });
- if (body !== undefined) {
- if (body.code == 200) {
- message.success("清空成功");
- if (actionTableRef.current) {
- actionTableRef.current.reload();
- }
- } else {
- message.error(body.msg);
- }
- } else {
- message.error("清空发生异常");
- }
- setClearAllModalVisible(false);
- };
- //取消清空操作
- const cancelClearAll = () => {
- setClearAllModalVisible(false);
- };
- //4.导出
- //导出表格数据
- const exportTable = async () => {
- if (searchTableFormRef.current) {
- const formData = new FormData();
- const data = {
- pageNum: page,
- pageSize: pageSize,
- ...searchTableFormRef.current.getFieldsValue(),
- };
- Object.keys(data).forEach((key) => {
- if (data[key] !== undefined) {
- formData.append(key, data[key]);
- }
- });
- await fetchFile(
- exportAPI,
- push,
- {
- method: "POST",
- body: formData,
- },
- `${exportFilePrefix}_${new Date().getTime()}.xlsx`
- );
- }
- };
- //5.选择行
- //选中行操作
- const [selectedRowKeys, setSelectedRowKeys] = useState<React.Key[]>([]);
- const [selectedRow, setSelectedRow] = useState(undefined as any);
- //删除按钮是否可用,选中行时才可用
- const [rowCanDelete, setRowCanDelete] = useState(false);
- //ProTable rowSelection
- const rowSelection = {
- onChange: (newSelectedRowKeys: React.Key[], selectedRows: any[]) => {
- setSelectedRowKeys(newSelectedRowKeys);
- setRowCanDelete(newSelectedRowKeys && newSelectedRowKeys.length > 0);
- if (newSelectedRowKeys && newSelectedRowKeys.length == 1) {
- setSelectedRow(selectedRows[0]);
- } else {
- setSelectedRow(undefined);
- }
- },
- //复选框的额外禁用判断
- // getCheckboxProps: (record) => ({
- // disabled: record.userId == 1,
- // }),
- };
- //搜索栏显示状态
- const [showSearch, setShowSearch] = useState(true);
- //action对象引用
- const actionTableRef = useRef<ActionType>(null);
- //搜索表单对象引用
- const searchTableFormRef = useRef<ProFormInstance>(null!);
- //当前页数和每页条数
- const [page, setPage] = useState(1);
- const defaultPageSize = 10;
- const [pageSize, setPageSize] = useState(defaultPageSize);
- const pageChange = (page: number, pageSize: number) => {
- setPage(page);
- setPageSize(pageSize);
- };
- const [isShowDetail, setIsShowDetail] = useState(false);
- //展示详情框
- const onClickShowRowDetailModal = (record: any) => {
- setIsShowDetail(true);
- setSelectedRow(record);
- };
- return (
- <PageContainer
- header={{
- title: "调度日志",
- onBack(e) {
- push("/monitor/job");
- },
- }}
- >
- <ProTable
- formRef={searchTableFormRef}
- rowKey="jobLogId"
- rowSelection={{
- selectedRowKeys,
- ...rowSelection,
- }}
- columns={columns}
- request={async (params: any, sorter: any, filter: any) => {
- // 表单搜索项会从 params 传入,传递给后端接口。
- const data = await queryTableData(params, sorter, filter);
- if (data !== undefined) {
- return Promise.resolve({
- data: data.rows,
- success: true,
- total: data.total,
- });
- }
- return Promise.resolve({
- data: [],
- success: true,
- });
- }}
- pagination={{
- defaultPageSize: defaultPageSize,
- showQuickJumper: true,
- showSizeChanger: true,
- onChange: pageChange,
- }}
- search={
- showSearch
- ? {
- defaultCollapsed: false,
- searchText: "搜索",
- }
- : false
- }
- dateFormatter="string"
- actionRef={actionTableRef}
- toolbar={{
- actions: [
- <Button
- key="danger"
- danger
- icon={<DeleteOutlined />}
- disabled={!rowCanDelete}
- onClick={() => onClickDeleteRow()}
- >
- 删除
- </Button>,
- <Button
- key="danger"
- danger
- icon={<DeleteOutlined />}
- onClick={() => onClickClearAll()}
- >
- 清空
- </Button>,
- <Button
- key="export"
- type="primary"
- icon={<FontAwesomeIcon icon={faDownload} />}
- onClick={exportTable}
- >
- 导出
- </Button>,
- ],
- settings: [
- {
- key: "switch",
- icon: showSearch ? (
- <FontAwesomeIcon icon={faToggleOn} />
- ) : (
- <FontAwesomeIcon icon={faToggleOff} />
- ),
- tooltip: showSearch ? "隐藏搜索栏" : "显示搜索栏",
- onClick: (key: string | undefined) => {
- setShowSearch(!showSearch);
- },
- },
- {
- key: "refresh",
- tooltip: "刷新",
- icon: <ReloadOutlined />,
- onClick: (key: string | undefined) => {
- if (actionTableRef.current) {
- actionTableRef.current.reload();
- }
- },
- },
- ],
- }}
- />
- {selectedRow !== undefined && (
- <Modal
- title="调度日志详情"
- footer={<Button onClick={() => setIsShowDetail(false)}>关闭</Button>}
- open={isShowDetail}
- onCancel={() => setIsShowDetail(false)}
- >
- <ProDescriptions column={2}>
- <ProDescriptions.Item label="日志序号">
- {selectedRow.jobLogId}
- </ProDescriptions.Item>
- <ProDescriptions.Item
- label="任务分组"
- valueEnum={{
- DEFAULT: {
- text: "默认",
- status: "DEFAULT",
- },
- SYSTEM: {
- text: "系统",
- status: "SYSTEM",
- },
- }}
- >
- {selectedRow.jobGroup}
- </ProDescriptions.Item>
- <ProDescriptions.Item label="任务名称">
- {selectedRow.jobName}
- </ProDescriptions.Item>
- <ProDescriptions.Item label="执行时间">
- {selectedRow.createTime}
- </ProDescriptions.Item>
- </ProDescriptions>
- <ProDescriptions column={1}>
- <ProDescriptions.Item label="调用目标方法">
- {selectedRow.invokeTarget}
- </ProDescriptions.Item>
- <ProDescriptions column={1}>
- <ProDescriptions.Item label="日志信息">
- {selectedRow.jobMessage}
- </ProDescriptions.Item>
- <ProDescriptions.Item
- label="执行状态"
- valueEnum={{
- 0: {
- text: "正常",
- status: "0",
- },
- 1: {
- text: "暂停",
- status: "1",
- },
- }}
- >
- {selectedRow.status}
- </ProDescriptions.Item>
- </ProDescriptions>
- </ProDescriptions>
- </Modal>
- )}
-
- {/* 删除确认模态框 */}
- <Modal
- title={
- <div style={{ display: 'flex', alignItems: 'center' }}>
- <ExclamationCircleFilled style={{ color: '#faad14', marginRight: 8 }} />
- <span>系统提示</span>
- </div>
- }
- open={deleteModalVisible}
- onOk={executeDeleteRow}
- onCancel={cancelDeleteRow}
- okText="确认"
- cancelText="取消"
- >
- <p>{`确定删除调度日志编号为“${deleteJobLogId}”的数据项?`}</p>
- </Modal>
-
- {/* 清空确认模态框 */}
- <Modal
- title={
- <div style={{ display: 'flex', alignItems: 'center' }}>
- <ExclamationCircleFilled style={{ color: '#faad14', marginRight: 8 }} />
- <span>系统提示</span>
- </div>
- }
- open={clearAllModalVisible}
- onOk={executeClearAll}
- onCancel={cancelClearAll}
- okText="确认"
- cancelText="取消"
- >
- <p>确定清空所有调度日志数据项?</p>
- </Modal>
- </PageContainer>
- );
- }
|